Here is a program that creates a 2D array, then prints it out.
The way that the nested loops are written enable the program to print out the correct number of cells for each row. The expression uneven[row].length evaluates to a different integer for each row of the array.
Row | Col | ||||
---|---|---|---|---|---|
0 | 1 | 2 | 3 | 4 | |
0 | 1 | 9 | 4 | ||
1 | 0 | 2 | |||
2 | 0 | 1 | 2 | 3 | 4 |
For the print method to work,
must every row of uneven
be non-null
?